home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / dissem / dissdemo.dir / 00219_Script_219 < prev    next >
Text File  |  1999-04-25  |  665b  |  34 lines

  1. on enterframe
  2.   
  3.   puppetsprite 7, true
  4.   puppetsprite 8, true
  5.   puppetsprite 9, true
  6.   puppetsprite 12, true
  7.   
  8.   
  9.   if rollover (7) then set the castnum of sprite 7 to 13
  10.   else 
  11.     set the castnum of sprite 7 to 8
  12.   end if
  13.   
  14.   if rollover (8) then set the castnum of sprite 8 to 14
  15.   else 
  16.     set the castnum of sprite 8 to 8
  17.   end if
  18.   
  19.   if rollover (9) then set the castnum of sprite 9 to 21
  20.   else 
  21.     set the castnum of sprite 9 to 19
  22.   end if
  23.   
  24.   if rollover (12) then set the visible of sprite 12 to true
  25.   else
  26.     set the visible of sprite 12 to false
  27.   end if
  28.   
  29. end enterframe
  30.  
  31.  
  32. on exitFrame
  33.   go to the frame
  34. end